type net/http.http2serverConn

82 uses

	net/http (current package)
		h2_bundle.go#L4133: 	http2testHookGetServerConn func(*http2serverConn)
		h2_bundle.go#L4135: 	http2testHookOnPanic       func(sc *http2serverConn, panicVal interface{}) (rePanic bool)
		h2_bundle.go#L4263: 	activeConns map[*http2serverConn]struct{}
		h2_bundle.go#L4266: func (s *http2serverInternalState) registerConn(sc *http2serverConn) {
		h2_bundle.go#L4275: func (s *http2serverInternalState) unregisterConn(sc *http2serverConn) {
		h2_bundle.go#L4307: 	conf.state = &http2serverInternalState{activeConns: make(map[*http2serverConn]struct{})}
		h2_bundle.go#L4476: func (s *http2Server) serveConn(c net.Conn, opts *http2ServeConnOpts, newf func(*http2serverConn)) {
		h2_bundle.go#L4482: 	sc := &http2serverConn{
		h2_bundle.go#L4626: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
		h2_bundle.go#L4634: type http2serverConn struct {
		h2_bundle.go#L4702: func (sc *http2serverConn) maxHeaderListSize() uint32 {
		h2_bundle.go#L4710: func (sc *http2serverConn) curOpenStreams() uint32 {
		h2_bundle.go#L4724: 	sc        *http2serverConn
		h2_bundle.go#L4748: func (sc *http2serverConn) Framer() *http2Framer { return sc.framer }
		h2_bundle.go#L4750: func (sc *http2serverConn) CloseConn() error { return sc.conn.Close() }
		h2_bundle.go#L4752: func (sc *http2serverConn) Flush() error { return sc.bw.Flush() }
		h2_bundle.go#L4754: func (sc *http2serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) {
		h2_bundle.go#L4758: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L4785: func (sc *http2serverConn) setConnState(state ConnState) {
		h2_bundle.go#L4791: func (sc *http2serverConn) vlogf(format string, args ...interface{}) {
		h2_bundle.go#L4797: func (sc *http2serverConn) logf(format string, args ...interface{}) {
		h2_bundle.go#L4845: func (sc *http2serverConn) condlogf(err error, format string, args ...interface{}) {
		h2_bundle.go#L4864: func (sc *http2serverConn) canonicalHeader(v string) string {
		h2_bundle.go#L4901: func (sc *http2serverConn) readFrames() {
		h2_bundle.go#L4934: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest, wd *http2writeData) {
		h2_bundle.go#L4945: func (sc *http2serverConn) closeAllStreamsOnConnClose() {
		h2_bundle.go#L4952: func (sc *http2serverConn) stopShutdownTimer() {
		h2_bundle.go#L4959: func (sc *http2serverConn) notePanic() {
		h2_bundle.go#L4974: func (sc *http2serverConn) serve(conf http2http2Config) {
		h2_bundle.go#L5094: 			case func(*http2serverConn):
		h2_bundle.go#L5120: func (sc *http2serverConn) handlePingTimer(lastFrameReadTime time.Time) {
		h2_bundle.go#L5158: func (sc *http2serverConn) onSettingsTimer() { sc.sendServeMsg(http2settingsTimerMsg) }
		h2_bundle.go#L5160: func (sc *http2serverConn) onIdleTimer() { sc.sendServeMsg(http2idleTimerMsg) }
		h2_bundle.go#L5162: func (sc *http2serverConn) onReadIdleTimer() { sc.sendServeMsg(http2readIdleTimerMsg) }
		h2_bundle.go#L5164: func (sc *http2serverConn) onShutdownTimer() { sc.sendServeMsg(http2shutdownTimerMsg) }
		h2_bundle.go#L5166: func (sc *http2serverConn) sendServeMsg(msg interface{}) {
		h2_bundle.go#L5179: func (sc *http2serverConn) readPreface() error {
		h2_bundle.go#L5220: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L5267: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L5287: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L5351: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L5408: func (sc *http2serverConn) wroteFrame(res http2frameWriteResult) {
		h2_bundle.go#L5476: func (sc *http2serverConn) scheduleFrameWrite() {
		h2_bundle.go#L5524: func (sc *http2serverConn) startGracefulShutdown() {
		h2_bundle.go#L5547: func (sc *http2serverConn) startGracefulShutdownInternal() {
		h2_bundle.go#L5551: func (sc *http2serverConn) goAway(code http2ErrCode) {
		h2_bundle.go#L5565: func (sc *http2serverConn) shutDownIn(d time.Duration) {
		h2_bundle.go#L5570: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5581: func (sc *http2serverConn) processFrameFromReader(res http2readFrameResult) bool {
		h2_bundle.go#L5638: func (sc *http2serverConn) processFrame(f http2Frame) error {
		h2_bundle.go#L5691: func (sc *http2serverConn) processPing(f *http2PingFrame) error {
		h2_bundle.go#L5715: func (sc *http2serverConn) processWindowUpdate(f *http2WindowUpdateFrame) error {
		h2_bundle.go#L5747: func (sc *http2serverConn) processResetStream(f *http2RSTStreamFrame) error {
		h2_bundle.go#L5766: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5813: func (sc *http2serverConn) processSettings(f *http2SettingsFrame) error {
		h2_bundle.go#L5841: func (sc *http2serverConn) processSetting(s http2Setting) error {
		h2_bundle.go#L5876: func (sc *http2serverConn) processSettingInitialWindowSize(val uint32) error {
		h2_bundle.go#L5904: func (sc *http2serverConn) processData(f *http2DataFrame) error {
		h2_bundle.go#L6001: func (sc *http2serverConn) processGoAway(f *http2GoAwayFrame) error {
		h2_bundle.go#L6067: func (sc *http2serverConn) processHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L6178: func (sc *http2serverConn) upgradeRequest(req *Request) {
		h2_bundle.go#L6232: func (sc *http2serverConn) checkPriority(streamID uint32, p http2PriorityParam) error {
		h2_bundle.go#L6243: func (sc *http2serverConn) processPriority(f *http2PriorityFrame) error {
		h2_bundle.go#L6251: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L6287: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6362: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6437: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
		h2_bundle.go#L6458: func (sc *http2serverConn) scheduleHandler(streamID uint32, rw *http2responseWriter, req *Request, handler func(ResponseWriter, *Request)) error {
		h2_bundle.go#L6478: func (sc *http2serverConn) handlerDone() {
		h2_bundle.go#L6503: func (sc *http2serverConn) runHandler(rw *http2responseWriter, req *Request, handler func(ResponseWriter, *Request)) {
		h2_bundle.go#L6545: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L6577: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L6594: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L6604: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L6615: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L6620: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L6644: 	conn          *http2serverConn
		h2_bundle.go#L6700: 	conn   *http2serverConn
		h2_bundle.go#L6929: 	w.rws.conn.sendServeMsg(func(sc *http2serverConn) {
		h2_bundle.go#L6955: 	w.rws.conn.sendServeMsg(func(sc *http2serverConn) {
		h2_bundle.go#L7276: func (sc *http2serverConn) startPush(msg *http2startPushRequest) {
		h2_bundle.go#L7420: func (sc *http2serverConn) countError(name string, err error) error {